home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASME's Mechanical Engine…ing Toolkit 1997 December
/
ASME's Mechanical Engineering Toolkit 1997 December.iso
/
c_lang
/
jpl-c1.lzh
/
TOLOWER.C
< prev
next >
Wrap
Text File
|
1986-05-18
|
640b
|
21 lines
/* 1.0 07-06-84 */
/************************************************************************
* Robert C. Tausworthe *
* Jet Propulsion Laboratory *
* Pasadena, CA 91009 1984 *
************************************************************************/
#include "defs.h"
#include "stdtyp.h"
#include "ctype.h"
/************************************************************************/
int
tolower(c) /* returns lower case of c, if a letter. */
/*----------------------------------------------------------------------*/
int c;
{
return (TOLOWER(c));
}